var win = null;
function reproductor(uri){
	var direccion = 'http://www.domiplay.net/radio/'+uri;
	var nombre_ventana = 'domiplayer';
	var w = '800'; 
	var h = '600';
	var scroll = 'no';
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll;
	win = window.open(direccion,nombre_ventana,settings)
}

if(screen.width < 450){
	location.replace('http://m3u.domiplay.net/'+uri_audio+'/');
}
